home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
Xor
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-10-03
|
299 b
|
12 lines
|
[
TEXT/TRUE
]
! Program to illustrate use of "xor".
!
SET window 0, 10, 0, 10
BOX AREA 0, 1.5, 0, 1.5 ! Draw a rectangle
BOX KEEP 0, 1.5, 0, 1.5 in box$ ! and keep it
BOX CLEAR 0, 1.5, 0, 1.5
FOR i = 1 to 8 ! Show overlapping boxes
BOX SHOW box$ at i, i using "xor"
NEXT i
END